home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 30 / Amiga Format AFCD30 (Sep 1998, Issue 114).iso / -screenplay- / shareware / abuse / lisp / options.lsp < prev    next >
Lisp/Scheme  |  1998-07-04  |  1KB  |  57 lines

  1. ;; Copyright 1995 Crack dot Com,  All Rights reserved
  2. ;; See licensing information for more details on usage rights
  3.  
  4.  
  5. (setq true T)
  6. (setq false nil)
  7.  
  8.  
  9.  
  10. ; this determines if the player will automatically change to
  11. ; a new weapon when he/she first picks it up.  If you don't
  12. ; want this option change the "true" to "false"
  13.  
  14. (setq change_on_pickup true)
  15.  
  16.  
  17.  
  18.  
  19. ; this determines weither you start on the trainer level
  20. ; (levels/level00.spe).  If you change "false" to "true"
  21. ; the game will start on level 1 (levels/level01.spe)
  22. ; instead
  23.  
  24. (setq skip_trainer_level false)
  25.  
  26.  
  27.  
  28.  
  29. ; this determines if you will switch to a more powerful, or
  30. ; less powerful weapon when you run out of ammo on the current
  31. ; weapon.  This option does not do anything if you have the laser
  32. ; rifle and you run out of ammo.  This option will not switch to
  33. ; the firebomb either.  If this option is set to false then
  34. ; the player will switch to the laser rifle when out of ammo.
  35.  
  36. (setq switch_to_powerful true)
  37.  
  38.  
  39.  
  40.  
  41. ; this option determines weither the right mouse button can selected
  42. ; a weapon.  The default is false
  43. ; CTRL & INS keys work the best and sometimes the right mouse button
  44. ; will get in the way while flying.
  45.  
  46. (setq mouse_can_switch false)
  47.  
  48.  
  49.  
  50.  
  51. ; this option allows the game to exit a idle game after 1 minute
  52. ; and go into a demo 
  53.  
  54. ; (demo_break_enable)
  55.  
  56.  
  57.